home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CICA Windows Explosion!
/
The CICA Windows Explosion! - Disc 2.iso
/
nt
/
gr564s.zip
/
SRC
/
MS
/
LOGINNT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-08-27
|
216b
|
18 lines
/* getlogin for Windows/NT */
/* by Frank Whaley */
/* $Id$ */
#include <windows.h>
char *
getlogin()
{
static char buf[128];
long len = sizeof(buf);
GetUserName(buf, &len);
return buf;
}